home *** CD-ROM | disk | FTP | other *** search
/ System Booster / System Booster.iso / Archives / ForCLI / 0Utils13.lha / 0Utils / SRunSX.Doc < prev    next >
Text File  |  1995-04-10  |  1KB  |  65 lines

  1.  
  2.     NAME
  3.     SRunSX
  4.  
  5.     SYNOPSIS
  6.     SRunSX - SRun Script Execute - Requires v37
  7.  
  8.     INPUTS
  9.     "COMMAND/F"
  10.  
  11.     FUNCTION
  12.     This is a program very Similar to SRun;
  13.     in fact it is just an extension to SRun.
  14.     Additionally to the functionality SRun shows,
  15.     SRunSX examines its first argument, and if this
  16.     is a quoted scriptfile, it explicitely calls
  17.     "Execute".
  18.     This is a workaround for a bug in Kickstart 2.0-3.1
  19.     Boot Shell, which addes a space to the filename, if
  20.     a Script is enclosed in brackets an not called via
  21.     Execute.
  22.  
  23.     RESULT
  24.     STDOUT: the output of the 'command' execution.
  25.     RC:    returnvalue of SystemTags() or >=10
  26.  
  27.     NOTES
  28.     CLI - only
  29.  
  30.     should compile with SAS-C
  31.  
  32.  
  33.     SRunSX does currently not call ReadArgs, this is due
  34.     to a bug(?) in readargs that removes some whitespace
  35.     and quotes from argstring even with /F option
  36.     (see bugs for consequences)
  37.  
  38.     BUGS
  39.     "SRunSX COMMAND commandstring" fails; U _MUST_ use
  40.     "SRunSX commandstring"
  41.  
  42.     EXAMPLES
  43.     > echo >  t:xxx "echo hallo"
  44.     > protect t:xxx +s
  45.     > t:xxx
  46.       hallo
  47.     > "t:xxx" ; beware of the quotes!
  48.       EXECUTE: Can't open t:xxx
  49.       object not found
  50.     > echo >"t:xxx " "echo error - this is the wrong script"
  51.     > "t:xxx" ; beware of the quotes!
  52.       error - this is the wrong script
  53.     > SRunSX "t:xxx"
  54.       hallo
  55.     > SRunSX echo hallo
  56.       hallo
  57.  
  58.     AUTHOR
  59.     Bernd Noll, Brunnenstrasse 55, D-67661 Kaiserslautern
  60.     noll@student.uni-kl.de
  61.  
  62.     Ok, now its slowly becoming a hack ...
  63.     (and ok cbm shell IS a hack ...)
  64.  
  65.